home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE23
/
TIPTRIX
/
LISTING1.PAS
next >
Wrap
Pascal/Delphi Source File
|
1997-06-17
|
335b
|
31 lines
T1.DPR:
program t1;
uses t1u;
end.
T1U.PAS:
{$A+,B-,C+,D+,E-,F-,G+,H+,I+,J+,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y-,Z1}
unit t1u;
interface
{$I SIMPLE.INC}
type
TSimpleClass = class
private
Unused1: integer;
Unused2: integer;
end;
implementation
end.
SIMPLE.INC:
{1
2
3
4
5
6
7
8
9}